From: Mike Gorse Date: Wed, 22 Jun 2011 20:23:15 +0000 (-0500) Subject: bgo#653191 - fix uninitialized variable in gtk_file_chooser_entry.c X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~39^2~20976 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=4fa3cef7952a523cd85e5d7c60f190908731c7dc;p=gtk%2B3.0.git bgo#653191 - fix uninitialized variable in gtk_file_chooser_entry.c --- diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c index cebaa9d82b..55303ed0fb 100644 --- a/gtk/gtkfilechooserentry.c +++ b/gtk/gtkfilechooserentry.c @@ -369,7 +369,7 @@ completion_match_func (GtkEntryCompletion *comp, gpointer data) { GtkFileChooserEntry *chooser_entry; - char *name; + char *name = NULL; gboolean result; char *norm_file_part; char *norm_name;